home *** CD-ROM | disk | FTP | other *** search
Text File | 1998-10-27 | 1.6 KB | 65 lines | [TEXT/ScoM] |
- launch-midi creator filename
-
- To launch a sequencer, scorewrite or other application that accepts
- MIDI files compile the file with play-file, compile-song or compile-instrument,
- and then use the launch-midi command.
-
- Supply launch-midi the four letter creator code of the application you want
- to launch, and the filename. This filename must be located in ccl;output folder.
-
- ;; play-file
-
- (play-file "Endless midi"
- all-instr '(sect-a sect-b)
- )
-
- (launch-midi "SCPL" "Endless midi")
-
- ;; compile-song
-
- (compile-song "ccl;output:" 1/1 "part3"
- ...
-
- (launch-midi "SCPL" "part3")
-
- ;; compile-instrument
-
- (compile-instrument "ccl;output:" "my song"
- perc
- bass
- )
-
- (launch-midi "SCPL" "my song")
-
- Creator Code
-
- The four letter here "SCPL" means the creator code of SoundApp. It could be
- any other sequencer that enables to launch MIDI files of its own creator from
- the desktop.
-
- (play-file "Endless midi"
- all-instr '(sect-a sect-b)
- )
-
- (launch-midi "SCPL" "Endless midi")
-
- To launch Logic use:
-
- (launch-midi "EMAG" "Endless midi")
-
- To launch Mark of the Unicorn Digital Performer use:
-
- (launch-midi "MOUP" "Endless midi")
-
- Drag a file on FileFanatic utility program to find out the creator of a new
- program. Copy the creator code into launch-midi. If the file does not launch
- in SCOM then the application is outdated.
-
- Using Quicktime Musical Instruments or OMS
-
- SoundApp enables to output to Quicktime Musical Instruments and play back
- 16 bit quality music without additional hardware. SoundApp also enables to
- use OMS directly. In both cases SCOM enables maximum of 16 channels. More
- channels are available using the Midishare and a Miditimepiece compatible
- MIDI interface
-